ContinueWith Method

Task Parallel System.Threading

Overload List

  NameDescription
ContinueWith(Action<(Of <(Task>)>))
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>))
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith(Action<(Of <(Task<(Of <(TResult>)>)>)>))
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith<(Of <(TNewResult>)>)(Func<(Of <(Task<(Of <(TResult>)>), TNewResult>)>))
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith(Action<(Of <(Task>)>), CancellationToken)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith(Action<(Of <(Task>)>), TaskContinuationOptions)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith(Action<(Of <(Task>)>), TaskScheduler)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), CancellationToken)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), TaskContinuationOptions)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), TaskScheduler)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith(Action<(Of <(Task<(Of <(TResult>)>)>)>), CancellationToken)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith(Action<(Of <(Task<(Of <(TResult>)>)>)>), TaskContinuationOptions)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith(Action<(Of <(Task<(Of <(TResult>)>)>)>), TaskScheduler)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith<(Of <(TNewResult>)>)(Func<(Of <(Task<(Of <(TResult>)>), TNewResult>)>), CancellationToken)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith<(Of <(TNewResult>)>)(Func<(Of <(Task<(Of <(TResult>)>), TNewResult>)>), TaskContinuationOptions)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith<(Of <(TNewResult>)>)(Func<(Of <(Task<(Of <(TResult>)>), TNewResult>)>), TaskScheduler)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith(Action<(Of <(Task>)>), CancellationToken, TaskContinuationOptions, TaskScheduler)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith<(Of <(TResult>)>)(Func<(Of <(Task, TResult>)>), CancellationToken, TaskContinuationOptions, TaskScheduler)
Creates a continuation that executes when the target Task completes.
(Inherited from Task.)
ContinueWith(Action<(Of <(Task<(Of <(TResult>)>)>)>), CancellationToken, TaskContinuationOptions, TaskScheduler)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.
ContinueWith<(Of <(TNewResult>)>)(Func<(Of <(Task<(Of <(TResult>)>), TNewResult>)>), CancellationToken, TaskContinuationOptions, TaskScheduler)
Creates a continuation that executes when the target Task<(Of <(TResult>)>) completes.

See Also